2c426308c8ce690e01df0d28334e85b0a2c3ce78,installer/core/src/main/java/org/apache/sling/installer/core/impl/tasks/BundleStartTask.java,BundleStartTask,execute,#InstallationContext#,102

Before Change


        try {
            b.start();
            if ( this.getResource() != null ) {
                this.setFinishedState(ResourceState.INSTALLED);
            }
            this.getLogger().info("Bundle started (retry count={}, bundle ID={}) : {}",
                    new Object[] {retryCount, bundleId, b.getSymbolicName()});

After Change


            // Try to start bundle, and if that doesn't work we'll need to retry
            try {
                b.start();
                this.setFinishedState(ResourceState.INSTALLED);
                this.getLogger().info("Bundle started (retry count={}, bundle ID={}) : {}",
                        new Object[] {retryCount, bundleId, b.getSymbolicName()});
            } catch (final BundleException e) {